aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/stats/[slug].tsx
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2023-11-18 21:21:22 -0800
committerPinapelz <yukais@pinapelz.com>2023-11-18 21:21:22 -0800
commitadc88dbdf3274d4d0cf15b5f2cf7b0bbb939bfe0 (patch)
tree96089396e548f3f57121674362b6170c7b76693b /src/pages/stats/[slug].tsx
parent96019367e8f72eac26abd3b7a908c2b914bd1ae1 (diff)
v3: re-write frontend using next js
Diffstat (limited to 'src/pages/stats/[slug].tsx')
-rw-r--r--src/pages/stats/[slug].tsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/pages/stats/[slug].tsx b/src/pages/stats/[slug].tsx
new file mode 100644
index 0000000..03f8adf
--- /dev/null
+++ b/src/pages/stats/[slug].tsx
@@ -0,0 +1,16 @@
+"use client"
+import { useRouter } from 'next/router'
+
+export default function Page() {
+ const router = useRouter();
+ return (
+ <div className="flex items-center justify-center h-screen">
+ <div className="bg-black p-8 rounded-lg shadow-lg">
+ <h1 className="text-2xl font-bold mb-4">Under Construction</h1>
+ <p className="text-gray-600">We are currently working on this page. Please check back later.</p>
+ <p className="text-gray-600">Thank you for your patience</p>
+ <p className="text-gray-600">Slug: {router.query.slug}</p>
+ </div>
+ </div>
+ );
+} \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage